home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / pcroct89.arc / BATCH.ARC / QMOUSE.BAT < prev    next >
DOS Batch File  |  1990-03-21  |  353b  |  21 lines

  1. echo off
  2. rem runs mouse.com or not, as requested
  3. rem requires getkey.com
  4.  
  5. echo Do you want to load the mouse driver (Y/N)?
  6. getkey
  7. if ERRORLEVEL 89 if not ERRORLEVEL 90 goto yes
  8. if ERRORLEVEL 121 if not ERRORLEVEL 122 goto yes
  9. echo N
  10. echo Mouse driver not loaded.
  11. goto end
  12.  
  13. :yes
  14. echo Y
  15. \mouse\mouse
  16. echo Mouse driver loaded.
  17.  
  18. :end
  19.  
  20.  
  21.